/* =============================== */
/* VERIFICATION PAGE STYLES                                           */
/* =============================== */
.verify-status-section {
    padding: 40px 20px;
    background: #f8fdfb;
}

.verify-container {
    max-width: 1000px;
    margin: 0 auto;
}

.status-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 2px solid #e0f0ea;
}

.status-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
}

.status-card h3 {
    color: #004c46;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.status-pending {
    color: #f59e0b;
}

.status-verified {
    color: #2E8B57;
}

.status-rejected {
    color: #ef4444;
}

.verify-form-section {
    padding: 60px 20px;
    background: white;
}

.verify-steps {
    margin-bottom: 40px;
}

.verify-step {
    background: #f8fdfb;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #e0f0ea;
    transition: all 0.3s ease;
}

.verify-step:hover {
    border-color: #2E8B57;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-info h3 {
    color: #004c46;
    font-size: 1.3rem;
    margin: 0 0 5px 0;
}

.step-info p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.step-status {
    flex-shrink: 0;
}

.step-status i {
    font-size: 1.5rem;
    color: #d1d5db;
}

.step-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0f0ea;
}

.upload-form .form-group {
    margin-bottom: 24px;
}

.upload-form label {
    display: block;
    color: #004c46;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.upload-form textarea,
.upload-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0f0ea;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: #004c46;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.upload-form textarea:focus,
.upload-form select:focus {
    outline: none;
    border-color: #2E8B57;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.file-upload-area {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: #2E8B57;
    background: #f0faf6;
}

.file-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label i {
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 10px;
    display: block;
}

.file-upload-label p {
    color: #004c46;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.file-upload-label span {
    color: #6b7280;
    font-size: 0.85rem;
    display: block;
}

.role-documents {
    padding: 20px;
    background: #eaf5f2;
    border-radius: 12px;
    margin-top: 20px;
}

.verify-help {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.help-card {
    background: #eaf5f2;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.help-card h3 {
    color: #004c46;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.help-card p {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.help-link {
    display: inline-block;
    background: #2E8B57;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: #236b43;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Responsive Design for Verification Page */
@media (max-width: 768px) {
    .step-header {
        flex-wrap: wrap;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .verify-step {
        padding: 20px;
    }

    .file-upload-area {
        padding: 20px;
    }

    .file-upload-label i {
        font-size: 2rem;
    }

    .verify-help {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .status-card {
        padding: 30px 20px;
    }

    .step-info h3 {
        font-size: 1.1rem;
    }

    .help-card {
        padding: 24px 20px;
    }
}